home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 1
/
Gold Medal Software Volume 1 (Gold Medal) (1994).iso
/
music
/
tunes300.arj
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-10
|
949b
|
41 lines
echo off
cls
echo Installing from %1 to %2 ...
:PREP
if %1 '==' goto NOPARM
if %2 '==' goto NOPARM
if not exist %1\NUL goto BADFROM
if not exist %2\NUL mkdir %2
if not exist %2\NUL goto BADTO
:INSTALL
copy %1\*.* %2
%1\getvideo
if errorlevel 1 goto COLOR
if errorlevel 0 goto MONO
:COLOR
echo Installing COLOR profile ...
copy %1\COLOR.PRO %2\TUNES.PRO
goto SUCCESS
:MONO
echo Installing MONOCHROME profile ...
copy %1\MONO.PRO %2\TUNES.PRO
goto SUCCESS
:NOPARM
echo Installation failed ... Must specify DRIVE and DIRECTORY parameters.
goto FAILURE
:BADFROM
echo Installation failed ... Invalid drive letter "%1".
goto FAILURE
:BADTO
echo Installation failed ... Unable to create directory "%2".
echo Please create using the "mkdir" command and try again.
goto DONE
:FAILURE
echo Example: A:INSTALL A: C:\TUNES
goto DONE
:SUCCESS
echo Installation successful ...
echo Type "tunes" to start ...
cd %2
:DONE